* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background: #f9fafc;
  color: #1a1a1a;
  overflow-x: hidden;
}

/* ================= HERO ================= */

.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(135deg, #0f172a, #1e293b);
  color: white;
  padding: 90px 8%;
  border-radius: 0 0 60px 60px;
  gap: 40px;
}

.hero-content {
  flex: 1;
}

.tagline {
  display: inline-block;
  background: #facc15;
  color: #111;
  padding: 6px 15px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 15px;
}

.hero h1 {
  font-size: 42px;
  margin-bottom: 15px;
}

.hero-sub {
  font-size: 18px;
  opacity: 0.9;
  line-height: 1.6;
}

.hero-image {
  flex: 1;
  text-align: right;
}

.hero-image img {
  width: 100%;
  max-width: 450px;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.4);
}

/* ================= SECTIONS ================= */

section {
  padding: 70px 8%;
}

section h2 {
  text-align: center;
  color: #facc15;
  margin-bottom: 30px;
  font-size: 30px;
}

/* DESCRIPTION */

.description {
  text-align: center;
  max-width: 900px;
  margin: auto;
}

.description p {
  color: #4b5563;
  line-height: 1.8;
  font-size: 16px;
}

/* SPECIFICATIONS */

.specs {
  max-width: 500px;
  margin: auto;
  list-style: none;
}

.specs li {
  padding: 12px 0;
  border-bottom: 1px solid #eee;
  text-align: center;
}

/* ================= CTA ================= */

.cta {
  text-align: center;
  background: #2563eb;
  color: white;
  border-radius: 40px;
  padding: 50px 20px;
  margin: 40px 8%;
}

.cta h2 {
  color: white;
}

.cta p {
  margin-bottom: 25px;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
}

.whatsapp-btn,
.call-btn {
  padding: 15px 30px;
  border-radius: 40px;
  text-decoration: none;
  font-weight: bold;
  color: white;
  transition: 0.3s ease;
}

.whatsapp-btn {
  background: #25D366;
}

.call-btn {
  background: #33b5e5;
}

.whatsapp-btn:hover,
.call-btn:hover {
  transform: translateY(-3px);
}

/* ================= TABLET ================= */

@media (max-width: 992px) {

  .hero h1 {
    font-size: 34px;
  }

}

/* ================= MOBILE ================= */

@media (max-width: 768px) {

  .hero {
    flex-direction: column;
    text-align: center;
    padding: 60px 6%;
  }

  .hero-image {
    text-align: center;
    margin-top: 30px;
  }

  .hero-image img {
    max-width: 100%;
  }

  section {
    padding: 50px 6%;
  }

  .cta {
    margin: 30px 6%;
    border-radius: 25px;
  }

  .whatsapp-btn,
  .call-btn {
    width: 100%;
    text-align: center;
  }

}

/* ================= SMALL MOBILE ================= */

@media (max-width: 480px) {

  .hero h1 {
    font-size: 26px;
  }

  .hero-sub {
    font-size: 15px;
  }

  section h2 {
    font-size: 22px;
  }

}
/* GO HOME BUTTON */
.go-home-btn {
  position: absolute;
  top: 25px;
  left: 25px;
  background: #0ae8f0;
  color: #111;
  padding: 8px 18px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  z-index: 10;
}

.go-home-btn:hover {
  background: white;
  transform: translateY(-3px);
}

/* ========================= */
/* 📱 MOBILE RESPONSIVE */
/* ========================= */
@media (max-width: 576px) {

  .go-home-btn {
    top: 15px;
    left: 15px;
    padding: 6px 14px;
    font-size: 12px;
    border-radius: 20px;
  }

}
